@Override
public int getHashCode(Object k) {
return getLatLon(k).hashCode();
}
}
@Override
public int getHashCode(Object k) {
LatLon coorK = getLatLon(k);
return coorK == null ? 0 : coorK.hashCode();
}
}